From 2ceb2294d97a3d56ef4d5e6d8344e27aea0c1e2b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 21 Nov 2004 02:20:52 +0000 Subject: [PATCH] Fix obsolete function call --- includes/CacheManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/CacheManager.php b/includes/CacheManager.php index e611737d5c..a79467dc0a 100644 --- a/includes/CacheManager.php +++ b/includes/CacheManager.php @@ -55,7 +55,7 @@ class CacheManager { } function fileCacheTime() { - return wfUnix2Timestamp( filemtime( $this->fileCacheName() ) ); + return wfTimestamp( MW_TS, filemtime( $this->fileCacheName() ) ); } function isFileCacheGood( $timestamp ) { -- 2.20.1